home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
...taking it to the Macs!
/
...taking it to the Macs!.iso
/
Extras
/
ActiveX Mac SDK
/
ActiveX SDK
/
Headers
/
UIDEBUG.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-04-22
|
316 b
|
16 lines
|
[
TEXT/????
]
#ifndef _DEBUG_H
#define _DEBUG_H
#ifndef ASSERTCOND
#ifdef _DEBUG
extern void __UIASSERTCONDSZ(char *, char *, char *, int);
#define ASSERTCOND(f) ( (f) ? (void) 0 : (__UIASSERTCONDSZ(#f, NULL, __FILE__, __LINE__)))
#else
#define ASSERTCOND(f) ((void)0)
#endif // _DEBUG
#endif // ASSERTCOND
#endif //!_DEBUG_H